/* Configuración general de la página */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f9;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    margin: 0;
}

/* Contenedor principal (tarjeta blanca) */
.container {
    width: 90%;
    max-width: 600px;
    background: white;
    padding: 2rem;
    margin-top: 1rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* --- DIV 1: TURNO ACTUAL --- */
.turno-actual {
    text-align: center;
    background-color: #e3f2fd;
    /* Azul muy suave */
    border: 2px solid #2196f3;
    /* Borde azul vibrante */
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.turno-actual h2 {
    margin: 0;
    color: #1565c0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.2rem;
}

.numero-gigante {
    font-size: 5rem;
    font-weight: bold;
    color: #0d47a1;
    margin: 10px 0;
    line-height: 1;
}

.alumno-actual {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
}

/* --- DIV 2: FORMULARIO DE REGISTRO --- */
.registro {
    background-color: #f1f8e9;
    /* Verde muy suave */
    border: 2px solid #66bb6a;
    /* Borde verde */
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.registro h2 {
    margin: 0 0 1rem 0;
    color: #2e7d32;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
    text-align: center;
}

.registro form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.registro input[type="text"] {
    flex: 1;
    min-width: 200px;
    padding: 12px 15px;
    border: 2px solid #a5d6a7;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.registro input[type="text"]:focus {
    outline: none;
    border-color: #66bb6a;
    background-color: #fff;
}

.registro button {
    padding: 12px 25px;
    background-color: #66bb6a;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
}

.registro button:hover {
    background-color: #4caf50;
    transform: translateY(-2px);
}

.registro button:active {
    transform: translateY(0);
}

/* --- DIV 3: LISTA DE LOS SIGUIENTES --- */
.lista-espera {
    background-color: #fff;
}

.lista-espera h3 {
    color: #555;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.fila-alumno {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1.1rem;
}

/* Efecto cebra: oscurece un poco las filas pares para leer mejor */
.fila-alumno:nth-child(even) {
    background-color: #fafafa;
}

.turno-id {
    font-weight: bold;
    color: #888;
    margin-right: 10px;
}

.btn-siguiente {
    background-color: #4caf50; /* Verde éxito */
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s, background-color 0.2s;
}

.btn-siguiente:hover {
    background-color: #43a047;
    transform: scale(1.05);
}

.btn-siguiente:active {
    transform: scale(0.95);
}